3.252 \(\int (a+b x^3)^3 \, dx\)

Optimal. Leaf size=38 \[ a^3 x+\frac {3}{4} a^2 b x^4+\frac {3}{7} a b^2 x^7+\frac {b^3 x^{10}}{10} \]

[Out]

a^3*x+3/4*a^2*b*x^4+3/7*a*b^2*x^7+1/10*b^3*x^10

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 38, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 1, integrand size = 9, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.111, Rules used = {194} \[ \frac {3}{4} a^2 b x^4+a^3 x+\frac {3}{7} a b^2 x^7+\frac {b^3 x^{10}}{10} \]

Antiderivative was successfully verified.

[In]

Int[(a + b*x^3)^3,x]

[Out]

a^3*x + (3*a^2*b*x^4)/4 + (3*a*b^2*x^7)/7 + (b^3*x^10)/10

Rule 194

Int[((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Int[ExpandIntegrand[(a + b*x^n)^p, x], x] /; FreeQ[{a, b}, x]
&& IGtQ[n, 0] && IGtQ[p, 0]

Rubi steps

\begin {align*} \int \left (a+b x^3\right )^3 \, dx &=\int \left (a^3+3 a^2 b x^3+3 a b^2 x^6+b^3 x^9\right ) \, dx\\ &=a^3 x+\frac {3}{4} a^2 b x^4+\frac {3}{7} a b^2 x^7+\frac {b^3 x^{10}}{10}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 38, normalized size = 1.00 \[ a^3 x+\frac {3}{4} a^2 b x^4+\frac {3}{7} a b^2 x^7+\frac {b^3 x^{10}}{10} \]

Antiderivative was successfully verified.

[In]

Integrate[(a + b*x^3)^3,x]

[Out]

a^3*x + (3*a^2*b*x^4)/4 + (3*a*b^2*x^7)/7 + (b^3*x^10)/10

________________________________________________________________________________________

fricas [A]  time = 0.74, size = 32, normalized size = 0.84 \[ \frac {1}{10} x^{10} b^{3} + \frac {3}{7} x^{7} b^{2} a + \frac {3}{4} x^{4} b a^{2} + x a^{3} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x^3+a)^3,x, algorithm="fricas")

[Out]

1/10*x^10*b^3 + 3/7*x^7*b^2*a + 3/4*x^4*b*a^2 + x*a^3

________________________________________________________________________________________

giac [A]  time = 0.16, size = 32, normalized size = 0.84 \[ \frac {1}{10} \, b^{3} x^{10} + \frac {3}{7} \, a b^{2} x^{7} + \frac {3}{4} \, a^{2} b x^{4} + a^{3} x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x^3+a)^3,x, algorithm="giac")

[Out]

1/10*b^3*x^10 + 3/7*a*b^2*x^7 + 3/4*a^2*b*x^4 + a^3*x

________________________________________________________________________________________

maple [A]  time = 0.00, size = 33, normalized size = 0.87 \[ \frac {1}{10} b^{3} x^{10}+\frac {3}{7} a \,b^{2} x^{7}+\frac {3}{4} a^{2} b \,x^{4}+a^{3} x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((b*x^3+a)^3,x)

[Out]

a^3*x+3/4*a^2*b*x^4+3/7*a*b^2*x^7+1/10*b^3*x^10

________________________________________________________________________________________

maxima [A]  time = 1.35, size = 32, normalized size = 0.84 \[ \frac {1}{10} \, b^{3} x^{10} + \frac {3}{7} \, a b^{2} x^{7} + \frac {3}{4} \, a^{2} b x^{4} + a^{3} x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x^3+a)^3,x, algorithm="maxima")

[Out]

1/10*b^3*x^10 + 3/7*a*b^2*x^7 + 3/4*a^2*b*x^4 + a^3*x

________________________________________________________________________________________

mupad [B]  time = 0.04, size = 32, normalized size = 0.84 \[ a^3\,x+\frac {3\,a^2\,b\,x^4}{4}+\frac {3\,a\,b^2\,x^7}{7}+\frac {b^3\,x^{10}}{10} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((a + b*x^3)^3,x)

[Out]

a^3*x + (b^3*x^10)/10 + (3*a^2*b*x^4)/4 + (3*a*b^2*x^7)/7

________________________________________________________________________________________

sympy [A]  time = 0.08, size = 36, normalized size = 0.95 \[ a^{3} x + \frac {3 a^{2} b x^{4}}{4} + \frac {3 a b^{2} x^{7}}{7} + \frac {b^{3} x^{10}}{10} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x**3+a)**3,x)

[Out]

a**3*x + 3*a**2*b*x**4/4 + 3*a*b**2*x**7/7 + b**3*x**10/10

________________________________________________________________________________________